home *** CD-ROM | disk | FTP | other *** search
/ The Scorpion King Cardz / The Scorpion King Cardz - Disc 4 - Memnon.iso / pc / assets / scorp_quit.dxr / 00012_parent_oQuitLogo.ls < prev    next >
Encoding:
Text File  |  2002-03-21  |  402 b   |  19 lines

  1. property pWidth, pHeight, pMyRect, pMyState, pMyPoint, pMyImage, pBlendLevel
  2.  
  3. on new me
  4.   pMyImage = member("quit_sking_logo").image.duplicate()
  5.   pWidth = pMyImage.width
  6.   pHeight = pMyImage.height
  7.   pMyRect = pMyImage.rect
  8.   pMyPoint = point(318, 80)
  9.   pMyState = #birth
  10.   pBlendLevel = 0
  11.   return me
  12. end
  13.  
  14. on moveQuitLogo me
  15.   if pBlendLevel < 100 then
  16.     pBlendLevel = pBlendLevel + 1
  17.   end if
  18. end
  19.